import json data = {} with open('data.txt', 'w') as outfile: json.dump(data, outfile)
import json with open('data.json') as f: data = json.load(f)